GetScriptSourceResponse

data class GetScriptSourceResponse(scriptSource: String, bytecode: String?)

Represents response frame that is returned from Debugger#getScriptSource operation call. Returns source for the script with given id.

See also

Constructors

GetScriptSourceResponse
Link copied to clipboard
fun GetScriptSourceResponse(scriptSource: String, bytecode: String? = null)

Properties

bytecode
Link copied to clipboard
val bytecode: String? = null
Wasm bytecode.
scriptSource
Link copied to clipboard
val scriptSource: String
Script source (empty in case of Wasm bytecode).

Sources

jvm source
Link copied to clipboard